home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / site-packages / uno.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  14KB  |  395 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. import sys
  5. import pyuno
  6. import __builtin__
  7. _g_ctx = pyuno.getComponentContext()
  8. _g_delegatee = __builtin__.__dict__['__import__']
  9.  
  10. def getComponentContext():
  11.     ''' returns the UNO component context, that was used to initialize the python runtime.
  12.     '''
  13.     return _g_ctx
  14.  
  15.  
  16. def getConstantByName(constant):
  17.     '''Looks up the value of a idl constant by giving its explicit name'''
  18.     return pyuno.getConstantByName(constant)
  19.  
  20.  
  21. def getTypeByName(typeName):
  22.     ''' returns a uno.Type instance of the type given by typeName. In case the
  23.         type does not exist, a com.sun.star.uno.RuntimeException is raised.
  24.     '''
  25.     return pyuno.getTypeByName(typeName)
  26.  
  27.  
  28. def createUnoStruct(typeName, *args):
  29.     '''creates a uno struct or exception given by typeName. The parameter args may
  30.     1) be empty. In this case, you get a default constructed uno structure.
  31.        ( e.g. createUnoStruct( "com.sun.star.uno.Exception" ) )
  32.     2) be a sequence with exactly one element, that contains an instance of typeName.
  33.        In this case, a copy constructed instance of typeName is returned
  34.        ( e.g. createUnoStruct( "com.sun.star.uno.Exception" , e ) )
  35.     3) be a sequence, where the length of the sequence must match the number of
  36.        elements within typeName (e.g.
  37.        createUnoStruct( "com.sun.star.uno.Exception", "foo error" , self) ). The
  38.        elements with in the sequence must match the type of each struct element,
  39.        otherwise an exception is thrown.
  40.     '''
  41.     return getClass(typeName)(*args)
  42.  
  43.  
  44. def getClass(typeName):
  45.     '''returns the class of a concrete uno exception, struct or interface
  46.     '''
  47.     return pyuno.getClass(typeName)
  48.  
  49.  
  50. def isInterface(obj):
  51.     '''returns true, when obj is a class of a uno interface'''
  52.     return pyuno.isInterface(obj)
  53.  
  54.  
  55. def generateUuid():
  56.     '''returns a 16 byte sequence containing a newly generated uuid or guid, see rtl/uuid.h '''
  57.     return pyuno.generateUuid()
  58.  
  59.  
  60. def systemPathToFileUrl(systemPath):
  61.     '''returns a file-url for the given system path'''
  62.     return pyuno.systemPathToFileUrl(systemPath)
  63.  
  64.  
  65. def fileUrlToSystemPath(url):
  66.     '''returns a system path (determined by the system, the python interpreter is running on)'''
  67.     return pyuno.fileUrlToSystemPath(url)
  68.  
  69.  
  70. def absolutize(path, relativeUrl):
  71.     '''returns an absolute file url from the given urls'''
  72.     return pyuno.absolutize(path, relativeUrl)
  73.  
  74.  
  75. def getCurrentContext():
  76.     '''Returns the currently valid current context.
  77.        see http://udk.openoffice.org/common/man/concept/uno_contexts.html#current_context
  78.        for an explanation on the current context concept
  79.     '''
  80.     return pyuno.getCurrentContext()
  81.  
  82.  
  83. def setCurrentContext(newContext):
  84.     '''Sets newContext as new uno current context. The newContext must
  85.     implement the XCurrentContext interface. The implemenation should
  86.     handle the desired properties and delegate unknown properties to the
  87.     old context. Ensure to reset the old one when you leave your stack ...
  88.     see http://udk.openoffice.org/common/man/concept/uno_contexts.html#current_context
  89.     '''
  90.     return pyuno.setCurrentContext(newContext)
  91.  
  92.  
  93. class Enum:
  94.     '''Represents a UNO idl enum, use an instance of this class to explicitly pass a boolean to UNO'''
  95.     
  96.     def __init__(self, typeName, value):
  97.         self.typeName = typeName
  98.         self.value = value
  99.         pyuno.checkEnum(self)
  100.  
  101.     
  102.     def __repr__(self):
  103.         return '<uno.Enum %s (%r)>' % (self.typeName, self.value)
  104.  
  105.     
  106.     def __eq__(self, that):
  107.         if not isinstance(that, Enum):
  108.             return False
  109.         
  110.         if self.typeName == that.typeName:
  111.             pass
  112.         return self.value == that.value
  113.  
  114.  
  115.  
  116. class Type:
  117.     '''Represents a UNO type, use an instance of this class to explicitly pass a boolean to UNO'''
  118.     
  119.     def __init__(self, typeName, typeClass):
  120.         self.typeName = typeName
  121.         self.typeClass = typeClass
  122.         pyuno.checkType(self)
  123.  
  124.     
  125.     def __repr__(self):
  126.         return '<Type instance %s (%r)>' % (self.typeName, self.typeClass)
  127.  
  128.     
  129.     def __eq__(self, that):
  130.         if not isinstance(that, Type):
  131.             return False
  132.         
  133.         if self.typeClass == that.typeClass:
  134.             pass
  135.         return self.typeName == that.typeName
  136.  
  137.     
  138.     def __hash__(self):
  139.         return self.typeName.__hash__()
  140.  
  141.  
  142.  
  143. class Bool(object):
  144.     """Represents a UNO boolean, use an instance of this class to explicitly 
  145.        pass a boolean to UNO.
  146.        Note: This class is deprecated. Use python's True and False directly instead
  147.     """
  148.     
  149.     def __new__(cls, value):
  150.         if isinstance(value, (str, unicode)) and value == 'true':
  151.             return True
  152.         
  153.         if isinstance(value, (str, unicode)) and value == 'false':
  154.             return False
  155.         
  156.         if value:
  157.             return True
  158.         
  159.         return False
  160.  
  161.  
  162.  
  163. class Char:
  164.     '''Represents a UNO char, use an instance of this class to explicitly pass a char to UNO'''
  165.     
  166.     def __init__(self, value):
  167.         if not isinstance(value, unicode):
  168.             raise AssertionError
  169.         if not len(value) == 1:
  170.             raise AssertionError
  171.         self.value = value
  172.  
  173.     
  174.     def __repr__(self):
  175.         return '<Char instance %s>' % (self.value,)
  176.  
  177.     
  178.     def __eq__(self, that):
  179.         if isinstance(that, (str, unicode)):
  180.             if len(that) > 1:
  181.                 return False
  182.             
  183.             return self.value == that[0]
  184.         
  185.         if isinstance(that, Char):
  186.             return self.value == that.value
  187.         
  188.         return False
  189.  
  190.  
  191.  
  192. class ByteSequence:
  193.     
  194.     def __init__(self, value):
  195.         if isinstance(value, str):
  196.             self.value = value
  197.         elif isinstance(value, ByteSequence):
  198.             self.value = value.value
  199.         else:
  200.             raise TypeError('expected string or bytesequence')
  201.  
  202.     
  203.     def __repr__(self):
  204.         return "<ByteSequence instance '%s'>" % (self.value,)
  205.  
  206.     
  207.     def __eq__(self, that):
  208.         if isinstance(that, ByteSequence):
  209.             return self.value == that.value
  210.         
  211.         if isinstance(that, str):
  212.             return self.value == that
  213.         
  214.         return False
  215.  
  216.     
  217.     def __len__(self):
  218.         return len(self.value)
  219.  
  220.     
  221.     def __getitem__(self, index):
  222.         return self.value[index]
  223.  
  224.     
  225.     def __iter__(self):
  226.         return self.value.__iter__()
  227.  
  228.     
  229.     def __add__(self, b):
  230.         if isinstance(b, str):
  231.             return ByteSequence(self.value + b)
  232.         elif isinstance(b, ByteSequence):
  233.             return ByteSequence(self.value + b.value)
  234.         
  235.         raise TypeError('expected string or ByteSequence as operand')
  236.  
  237.     
  238.     def __hash__(self):
  239.         return self.value.hash()
  240.  
  241.  
  242.  
  243. class Any:
  244.     '''use only in connection with uno.invoke() to pass an explicit typed any'''
  245.     
  246.     def __init__(self, type, value):
  247.         if isinstance(type, Type):
  248.             self.type = type
  249.         else:
  250.             self.type = getTypeByName(type)
  251.         self.value = value
  252.  
  253.  
  254.  
  255. def invoke(object, methodname, argTuple):
  256.     '''use this function to pass exactly typed anys to the callee (using uno.Any)'''
  257.     return pyuno.invoke(object, methodname, argTuple)
  258.  
  259.  
  260. def _uno_import(name, *optargs):
  261.     
  262.     try:
  263.         if len(optargs) == 0:
  264.             return _g_delegatee(name)
  265.         
  266.         return _g_delegatee(name, *optargs)
  267.     except ImportError:
  268.         if len(optargs) != 3 or not optargs[2]:
  269.             raise 
  270.         
  271.     except:
  272.         not optargs[2]
  273.  
  274.     globals = optargs[0]
  275.     locals = optargs[1]
  276.     fromlist = optargs[2]
  277.     modnames = name.split('.')
  278.     mod = None
  279.     d = sys.modules
  280.     for x in modnames:
  281.         if d.has_key(x):
  282.             mod = d[x]
  283.         else:
  284.             mod = pyuno.__class__(x)
  285.         d = mod.__dict__
  286.     
  287.     RuntimeException = pyuno.getClass('com.sun.star.uno.RuntimeException')
  288.     for x in fromlist:
  289.         if not d.has_key(x):
  290.             if x.startswith('typeOf'):
  291.                 
  292.                 try:
  293.                     d[x] = pyuno.getTypeByName(name + '.' + x[6:len(x)])
  294.                 except RuntimeException:
  295.                     e = None
  296.                     raise ImportError('type ' + name + '.' + x[6:len(x)] + ' is unknown')
  297.                 except:
  298.                     None<EXCEPTION MATCH>RuntimeException
  299.                 
  300.  
  301.             None<EXCEPTION MATCH>RuntimeException
  302.             
  303.             try:
  304.                 d[x] = pyuno.getClass(name + '.' + x)
  305.             except RuntimeException:
  306.                 e = None
  307.                 
  308.                 try:
  309.                     d[x] = Enum(name, x)
  310.                 except RuntimeException:
  311.                     e2 = None
  312.                     
  313.                     try:
  314.                         d[x] = getConstantByName(name + '.' + x)
  315.                     except RuntimeException:
  316.                         e3 = None
  317.                         raise ImportError('type ' + name + '.' + x + ' is unknown')
  318.                     except:
  319.                         None<EXCEPTION MATCH>RuntimeException
  320.                     
  321.  
  322.                     None<EXCEPTION MATCH>RuntimeException
  323.                 
  324.  
  325.                 None<EXCEPTION MATCH>RuntimeException
  326.             
  327.  
  328.         None<EXCEPTION MATCH>RuntimeException
  329.     
  330.     return mod
  331.  
  332. __builtin__.__dict__['__import__'] = _uno_import
  333.  
  334. def _impl_extractName(name):
  335.     r = range(len(name) - 1, 0, -1)
  336.     for i in r:
  337.         if name[i] == '.':
  338.             name = name[i + 1:len(name)]
  339.             break
  340.             continue
  341.     
  342.     return name
  343.  
  344.  
  345. def _uno_struct__init__(self, *args):
  346.     if len(args) == 1 and hasattr(args[0], '__class__') and args[0].__class__ == self.__class__:
  347.         self.__dict__['value'] = args[0]
  348.     else:
  349.         self.__dict__['value'] = pyuno._createUnoStructHelper(self.__class__.__pyunostruct__, args)
  350.  
  351.  
  352. def _uno_struct__getattr__(self, name):
  353.     return __builtin__.getattr(self.__dict__['value'], name)
  354.  
  355.  
  356. def _uno_struct__setattr__(self, name, value):
  357.     return __builtin__.setattr(self.__dict__['value'], name, value)
  358.  
  359.  
  360. def _uno_struct__repr__(self):
  361.     return repr(self.__dict__['value'])
  362.  
  363.  
  364. def _uno_struct__str__(self):
  365.     return str(self.__dict__['value'])
  366.  
  367.  
  368. def _uno_struct__eq__(self, cmp):
  369.     if hasattr(cmp, 'value'):
  370.         return self.__dict__['value'] == cmp.__dict__['value']
  371.     
  372.     return False
  373.  
  374.  
  375. def _uno_extract_printable_stacktrace(trace):
  376.     mod = None
  377.     
  378.     try:
  379.         mod = __import__('traceback')
  380.     except ImportError:
  381.         e = None
  382.  
  383.     ret = ''
  384.     if mod:
  385.         lst = mod.extract_tb(trace)
  386.         max = len(lst)
  387.         for j in range(max):
  388.             i = lst[max - j - 1]
  389.             ret = ret + '  ' + str(i[0]) + ':' + str(i[1]) + ' in function ' + str(i[2]) + '() [' + str(i[3]) + ']\n'
  390.         
  391.     else:
  392.         ret = "Couldn't import traceback module"
  393.     return ret
  394.  
  395.